home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Browsers, Managers & Extensions / Firefox Backup Extension 6.0.3 / chrome / febe.jar / content / febeChmod.xul < prev    next >
Extensible Markup Language  |  2008-08-06  |  2KB  |  43 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="chrome://febe/skin/febe.css" type="text/css"?>
  3.  
  4. <!DOCTYPE overlay SYSTEM "chrome://febe/locale/febe.dtd">
  5.  
  6. <dialog xmlns:html="http://www.w3.org/1999/xhtml"
  7.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  8.     id="febeChmodWindow"
  9.     title="&febe.chmod.title;"
  10.     autostretch="always"
  11.     width="400"
  12.     onload="sizeToContent(); febeSetExDir(); "
  13.     ondialogcancel="window.close();"
  14.     ondialogaccept="febeChmod(); window.close();">
  15.  
  16.     <script type="application/x-javascript" src="chrome://febe/content/febeCommon.js"/>
  17.     <script type="application/x-javascript" src="chrome://febe/content/febe.js"/>
  18.  
  19.     <stringbundleset id="febestringbundleset"> 
  20.         <stringbundle id="febe-strings" src="chrome://febe/locale/febe.properties"/>
  21.     </stringbundleset>
  22.  
  23.     <groupbox>
  24.         <vbox flex="1">
  25.             <hbox flex="1">
  26.                 <label id="febeZipLabel" value="&febe.chmod.zip;"/>
  27.                 <label id="febeZipValue" value="&febe.unknown;"/>
  28.             </hbox>
  29.             <hbox flex="1">
  30.                 <label id="febeUnzipLabel" value="&febe.chmod.unzip;"/>
  31.                 <label id="febeUnzipValue" value="&febe.unknown;"/>
  32.             </hbox>
  33.             <description flex="1">
  34.                 <html:br></html:br>&febe.chmod.text;<html:br></html:br><html:br></html:br>
  35.             </description>
  36.         </vbox>
  37.         <groupbox>
  38.             <caption label="&febe.chmod.caption;"/>
  39.             <textbox id="febeExtDirZip" cols="50" rows="1" wrap="off" class="plain" readonly="yes" flex="1" value="&febe.unknown;"/>
  40.         </groupbox>
  41.     </groupbox>
  42. </dialog>
  43.